home *** CD-ROM | disk | FTP | other *** search
/ Aminet 49 / Aminet 49 (2002)(GTI - Schatztruhe)[!][Jun 2002].iso / Aminet / util / libs / ttrender.lha / ttrender-2.0 / Examples / makefile next >
Makefile  |  2002-04-05  |  186b  |  10 lines

  1. test: test.o startup.o
  2.     gcc -o test -nostartfiles -noixemul -msmall-code -fbaserel startup.o test.o
  3.  
  4. test.o: test.c
  5.     gcc $(CF) $<
  6.  
  7. startup.o: startup.c
  8.     gcc $(CF) -fwritable-strings $<
  9.  
  10.